home *** CD-ROM | disk | FTP | other *** search
- ' Declare Cursor Structure
- Type lpoint
- x As Integer
- y As Integer
- End Type
-
- 'Declare Window Dimensions Structure
- Type lrect
- left As Integer
- top As Integer
- right As Integer
- bottom As Integer
- End Type
-
- 'Windows API to Find the Current Cursor Position
- Declare Sub GetCursorPos Lib "User" (lpPoint As lpoint)
-
- 'Windows API to Find the Dimensions of a Window
- Declare Sub GetWindowRect Lib "User" (ByVal hWnd%, lpRect As lrect)
-
-